set
Represents a mutable set of elements. The set is a hash-set with an iteration order determined by the order the elements was first added to the set.
Since
0.6.0
Constructors
Functions
Adds all elements from another collection to this collection.
Adds all elements from another collection to this collection.
Checks if the collection contains all elements of another collection.
Checks if the collection contains all elements of another collection.
Creates a text from all the elements separated using separator
and using the given prefix
and postfix
if supplied.
If the iterable is large, you can specify a non-negative value of limit
, in which case only the first limit
of elements will be appended, followed by the truncated
text (which defaults to "...").
Removes all elements from the collection that are present in another collection.
Removes all elements from the collection that are present in another collection.